home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / NWLIB.ZIP / 16BIT.ZIP / NWREG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-08-13  |  623 b   |  46 lines

  1. unit Nwreg;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, 
  7.   WinTypes, 
  8.   WinProcs, 
  9.   Messages, 
  10.   Classes, 
  11.   Graphics, 
  12.   Controls,
  13.   Forms, 
  14.   Dialogs;
  15.  
  16. type
  17.   TNWREG = class(TCOMPONENT)
  18.   private
  19.     { Private declarations }
  20.   protected
  21.     { Protected declarations }
  22.   public
  23.     { Public declarations }
  24.   published
  25.     { Published declarations }
  26.   end;
  27.  
  28. procedure Register;
  29.  
  30. implementation
  31.  
  32. uses
  33.   NWLib,
  34.   NWPrint,
  35.   NWServer,
  36.   NWProp,
  37.   NWNDS,
  38.   NWTools ;
  39.  
  40. procedure Register;
  41.   begin
  42.     RegisterComponents('NWLib', [TNWLIB,TNWPRINT,TNWSERVER,TNWPROP,TNWNDS,TNWTOOLS]);
  43.   end;
  44.  
  45. end.
  46.